home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / infor / wpj13.zip / READSET.H < prev    next >
Text File  |  1993-03-02  |  902b  |  49 lines

  1. typedef struct    AppFiles {
  2.   char        InFName[15];
  3.   char        OutFName[15];
  4.   char        OutPath[30];
  5.   char        FileDesc[40];
  6.   int        DiskNum;
  7.   int        FileType;
  8.   struct AppFiles FAR *Next;
  9. } AppList;
  10.  
  11. typedef AppList    FAR *FAppList;
  12.  
  13. typedef struct InstData {
  14.   char        AppName[50];
  15.   char        DefPath[40];
  16.   long        TotSpaceReq;
  17.   char        GrpFileName[15];
  18.   char        GrpDesc[40];
  19.   struct AppFiles    FAR *Apps;
  20. } InstInfo;
  21.  
  22. typedef InstInfo FAR *LInstInfo;
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29. /* typedefs and prototypes for readset.c
  30. */
  31.  
  32. typedef unsigned int UINT;
  33.  
  34. void ScanFile(HWND, char *, UINT);
  35. int ProcessLine(HWND, int, char *);
  36. void appName(char *);
  37. void classified(char *);
  38. void defPath(char *);
  39. void spaceReq(char *);
  40. void grpFileName(char *);
  41. void grpDesc(char *);
  42. void sinFName(char *);
  43. void soutFName(char *);
  44. void outPath(char *);
  45. void fileDesc(char *);
  46. void diskNum(char *);
  47. void isExec(char *);
  48.  
  49.